From f35031994ae7696f1729c01f25c779027cbe9ee9 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 27 Aug 2008 16:40:29 +0000 Subject: [PATCH] Fix fatal error caused by missing comma --- includes/api/ApiBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiBase.php b/includes/api/ApiBase.php index 445451f703..f926a2d575 100644 --- a/includes/api/ApiBase.php +++ b/includes/api/ApiBase.php @@ -633,7 +633,7 @@ abstract class ApiBase { 'ipb_blocked_as_range' => array('code' => 'blockedasrange', 'info' => "IP address ``\$1'' was blocked as part of range ``\$2''. You can't unblock the IP invidually, but you can unblock the range as a whole."), 'ipb_cant_unblock' => array('code' => 'cantunblock', 'info' => "The block you specified was not found. It may have been unblocked already"), 'mailnologin' => array('code' => 'cantsend', 'info' => "You're not logged in or you don't have a confirmed e-mail address, so you can't send e-mail"), - 'usermaildisabled' => array('code' => 'usermaildisabled' 'info' => "User email has been disabled"), + 'usermaildisabled' => array('code' => 'usermaildisabled', 'info' => "User email has been disabled"), 'blockedemailuser' => array('code' => 'blockedfrommail', 'info' => "You have been blocked from sending e-mail"), 'notarget' => array('code' => 'notarget', 'info' => "You have not specified a valid target for this action"), 'noemail' => array('code' => 'noemail', 'info' => "The user has not specified a valid e-mail address, or has chosen not to receive e-mail from other users"), -- 2.20.1